home *** CD-ROM | disk | FTP | other *** search
/ Pluspack 1 / Caligari Corporation Pluspack1 1998.iso / TSX_SDK / tsxINC / ItsxPolyhedron.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-28  |  1.1 KB  |  40 lines

  1. //******************************************************************************
  2. //    File: ItsxPolyhedron.h
  3. //  Module: trueSpace eXtensions API
  4. //   Descr: Declarations for the ItsxPolyhedron COM interface
  5. //******************************************************************************
  6.  
  7.  
  8. #ifndef ITSXPOLYHEDRON_H
  9. #define ITSXPOLYHEDRON_H
  10.  
  11.  
  12. #include "itsxcommon.h"
  13.  
  14.  
  15. #undef INTERFACE
  16. #define INTERFACE ItsxPolyhedron
  17.  
  18. DECLARE_INTERFACE_(ItsxPolyhedron, IUnknown)
  19. {
  20.     // IUnknown members
  21.     STDMETHOD(QueryInterface) (THIS_ REFIID, PPVOID) PURE;
  22.     STDMETHOD_(ULONG, AddRef)  (THIS) PURE;
  23.     STDMETHOD_(ULONG, Release) (THIS) PURE;
  24.  
  25.     // ItsxPolyhedron members
  26.     STDMETHOD(Update) (THIS) PURE;
  27.     STDMETHOD(Tessellate) (THIS) PURE;
  28.     STDMETHOD(SetDefaultMaterial) (THIS) PURE;
  29.     STDMETHOD(CopyFrom) (THIS_ ItsxPolyhedron*) PURE;
  30. };
  31.  
  32. // typedef a pointer to this interface
  33. typedef ItsxPolyhedron* PITSXPOLYHEDRON;
  34.  
  35. // define a GUID for this interface
  36. // {BB099220-3436-11d1-A255-006097D15F58}
  37. DEFINE_GUID(IID_ItsxPolyhedron, 0xbb099220, 0x3436, 0x11d1, 0xa2, 0x55, 0x0, 0x60, 0x97, 0xd1, 0x5f, 0x58);
  38.  
  39.  
  40. #endif // ITSXPOLYHEDRON_H